home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Modules / BackSpaceModules / Source / BattleView / BattleView.h < prev    next >
Text File  |  1994-05-04  |  1KB  |  44 lines

  1. /* BattleView.h -- Interface def for main view
  2.    Copyright (C) 1992, 1993 David A. Strout
  3.  
  4.    This program is free software; you can redistribute it and/or modify
  5.    it under the terms of the GNU General Public License as published by
  6.    the Free Software Foundation; either version 2, or (at your option)
  7.    any later version.
  8.  
  9.    This program is distributed in the hope that it will be useful,
  10.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.    GNU General Public License for more details.
  13.  
  14.    You should have received a copy of the GNU General Public License
  15.    along with this program; if not, write to the Free Software
  16.    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
  17.  
  18. /* Written by David Strout <dstrout@isi.edu>. */
  19.  
  20. #import <appkit/appkit.h>
  21. #import <math.h>
  22. #import "Thinker.h"
  23.  
  24. @interface BattleView:View
  25. {
  26.   id theFedList;
  27.   id theKliList;
  28.   id theWeaponList;
  29.   id sharedInspectorPanel;
  30. }
  31.  
  32. - initFrame:(const NXRect *)frm;
  33. - drawSelf:(NXRect *)rects :(int)rectCount; 
  34. - (float)xSize;
  35. - (float)ySize;
  36. - drawPhaser;
  37. - erasePhaser;
  38. - oneStep;
  39. - shootPhaser;
  40. - inspector:sender;
  41. - sizeTo:(NXCoord)width :(NXCoord)height;
  42.  
  43. @end
  44.